home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
- # postrm script for libsensors3
-
- set -e
-
- case "$1" in
- purge)
- if [ -e /etc/sensors.conf ]; then
- rm /etc/sensors.conf
- fi
-
- ucf -p /etc/sensors.conf || true
- ;;
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- ;;
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 0
- esac
-
- # dh_installdeb will replace this with shell code automatically
- # generated by other debhelper scripts.
-
- # Automatically added by dh_makeshlibs
- if [ "$1" = "remove" ]; then
- ldconfig
- fi
- # End automatically added section
-
-